home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C & C++ Multimedia Cyber Classroom
/
C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso
/
src
/
fig09_10.jar
/
Ch09
/
Fig09_10
/
Point2.h
< prev
Wrap
C/C++ Source or Header
|
1997-08-25
|
516b
|
19 lines
// Fig. 9.8: point2.h
// Definition of class Point
#ifndef POINT2_H
#define POINT2_H
class Point {
friend ostream &operator<<( ostream &, const Point & );
public:
Point( int = 0, int = 0 ); // default constructor
void setPoint( int, int ); // set coordinates
int getX() const { return x; } // get x coordinate
int getY() const { return y; } // get y coordinate
protected: // accessible to derived classes
int x, y; // coordinates of the point
};
#endif